home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / GRAPHICS / VOXRAY.ZIP / SCREEN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-10  |  274 b   |  12 lines

  1. #ifndef __SCREEN__
  2. #define __SCREEN__
  3.  
  4. #define PALETTE_SIZE 768
  5.  
  6. const SCREEN_WIDTH=320,SCREEN_HEIGHT=200;
  7. extern "C" unsigned char * screen;
  8. void setgmode(short int mode);
  9. void setpalette(unsigned char * palptr);
  10. void getpalette(unsigned char * palptr);
  11. #endif
  12.